找传奇、传世资源到传世资源站!

Android UI界面漂亮的天气预报源码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】Android UI界面漂亮的天气预报源码

这是一款纯中文界面的android天气预报程序源码,非常适合android初学者,欢迎下载学习,并且提出意见,希望能给大家带来帮助。PS一下,天气预报数据来源于google。

【相关图片】

from clipboard

【源码结构】

.
├── Android UI界面漂亮的天气预报源码
│   └── ty-weather
│       ├── AndroidManifest.xml
│       ├── assets
│       ├── bin
│       │   ├── classes.dex
│       │   ├── com
│       │   │   └── ty
│       │   │       └── weather
│       │   │           ├── ConfigureActivity.class
│       │   │           ├── DetailForecastActivity$ForecastAdapter.class
│       │   │           ├── DetailForecastActivity.class
│       │   │           ├── ForecastProvider$DatabaseHelper.class
│       │   │           ├── ForecastProvider$WeatherDetails.class
│       │   │           ├── ForecastProvider$WeatherWidgets.class
│       │   │           ├── ForecastProvider.class
│       │   │           ├── ForecastService.class
│       │   │           ├── ForecastTimeService.class
│       │   │           ├── ForecastWidget.class
│       │   │           ├── R$anim.class
│       │   │           ├── R$attr.class
│       │   │           ├── R$color.class
│       │   │           ├── R$drawable.class
│       │   │           ├── R$id.class
│       │   │           ├── R$layout.class
│       │   │           ├── R$string.class
│       │   │           ├── R$xml.class
│       │   │           ├── R.class
│       │   │           ├── WebServiceHelper$ForecastParseException.class
│       │   │           ├── WebServiceHelper.class
│       │   │           └── util
│       │   │               ├── ForecastEntity.class
│       │   │               ├── ForecastUtil.class
│       │   │               └── WidgetEntity.class
│       │   ├── resources.ap_
│       │   └── ty-weather.apk
│       ├── default.properties
│       ├── gen
│       │   └── com
│       │       └── ty
│       │           └── weather
│       │               └── R.java
│       ├── res
│       │   ├── anim
│       │   │   ├── rotatecurrentweather.xml
│       │   │   ├── translatecloudleft.xml
│       │   │   ├── translatecloudright.xml
│       │   │   ├── translaterain01.xml
│       │   │   ├── translaterain02.xml
│       │   │   ├── translaterain03.xml
│       │   │   ├── translaterain04.xml
│       │   │   └── translaterain05.xml
│       │   ├── drawable
│       │   │   ├── Thumbs.db
│       │   │   ├── cloudy.png
│       │   │   ├── cloudyrain.png
│       │   │   ├── dots.png
│       │   │   ├── flurries.png
│       │   │   ├── fog.png
│       │   │   ├── icerain.png
│       │   │   ├── layer_cloud1.png
│       │   │   ├── layer_cloud2.png
│       │   │   ├── layer_drop1.png
│       │   │   ├── layer_drop2.png
│       │   │   ├── layer_drop3.png
│       │   │   ├── layer_drop4.png
│       │   │   ├── layer_drop5.png
│       │   │   ├── layer_drop6.png
│       │   │   ├── layer_drop7.png
│       │   │   ├── layer_lightning1.png
│       │   │   ├── layer_lightning2.png
│       │   │   ├── layer_lightning3.png
│       │   │   ├── lightrain.png
│       │   │   ├── mostlysunny.png
│       │   │   ├── number_0_tahoma.png
│       │   │   ├── number_1_tahoma.png
│       │   │   ├── number_2_tahoma.png
│       │   │   ├── number_3_tahoma.png
│       │   │   ├── number_4_tahoma.png
│       │   │   ├── number_5_tahoma.png
│       │   │   ├── number_6_tahoma.png
│       │   │   ├── number_7_tahoma.png
│       │   │   ├── number_8_tahoma.png
│       │   │   ├── number_9_tahoma.png
│       │   │   ├── rain.png
│       │   │   ├── rain1.png
│       │   │   ├── rain2.png
│       │   │   ├── rain3.png
│       │   │   ├── snow.png
│       │   │   ├── storm.png
│       │   │   ├── sun.png
│       │   │   ├── weather.png
│       │   │   ├── weather_chancesnow.png
│       │   │   ├── weather_chancesnow_n.png
│       │   │   ├── weather_chancestorm.png
│       │   │   ├── weather_chancestorm_n.png
│       │   │   ├── weather_cloudy.png
│       │   │   ├── weather_cloudyrain.png
│       │   │   ├── weather_cloudyrain_n.png
│       │   │   ├── weather_flurries.png
│       │   │   ├── weather_fog.png
│       │   │   ├── weather_haze.png
│       │   │   ├── weather_icyrain.png
│       │   │   ├── weather_lightrain.png
│       │   │   ├── weather_mostlycloudy.png
│       │   │   ├── weather_mostlycloudy_n.png
│       │   │   ├── weather_mostlysunny.png
│       │   │   ├── weather_mostlysunny_n.png
│       │   │   ├── weather_rain.png
│       │   │   ├── weather_snow.png
│       │   │   ├── weather_storm.png
│       │   │   ├── weather_sunny.png
│       │   │   ├── weather_sunny_n.png
│       │   │   └── weatherbg.png
│       │   ├── layout
│       │   │   ├── configure.xml
│       │   │   ├── detail.xml
│       │   │   ├── detailitems.xml
│       │   │   └── weather.xml
│       │   ├── values
│       │   │   ├── color.xml
│       │   │   └── strings.xml
│       │   └── xml
│       │       └── weatherwidget.xml
│       └── src
│           └── com
│               └── ty
│                   └── weather
│                       ├── ConfigureActivity.java
│                       ├── DetailForecastActivity.java
│                       ├── ForecastProvider.java
│                       ├── ForecastService.java
│                       ├── ForecastTimeService.java
│                       ├── ForecastWidget.java
│                       ├── WebServiceHelper.java
│                       └── util
│                           ├── ForecastEntity.java
│                           ├── ForecastUtil.java
│                           └── WidgetEntity.java
└── 5t6t网_Android UI界面漂亮的天气预报源码.zip

23 directories, 117 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复